home *** CD-ROM | disk | FTP | other *** search
/ Champak 50 / Volume 50 - JOGO DISK .iso / Games / maya_miguel_global_groovin.swf / scripts / DefineButton2_149 / BUTTONCONDACTION on(press).as
Text File  |  2007-09-27  |  556b  |  21 lines

  1. on(press){
  2.    _root.stop();
  3.    _root.PlayHeadMoving = false;
  4.    _root.GameStarted = false;
  5.    _root.GamePaused = true;
  6.    _root.GlobalSound.stop();
  7.    if(_root.soundtrack1playing)
  8.    {
  9.       _root.StopThisSound(_root.soundtrack1current,_root.soundtrack1index,1);
  10.    }
  11.    if(_root.soundtrack2playing)
  12.    {
  13.       _root.StopThisSound(_root.soundtrack2current,_root.soundtrack2index,2);
  14.    }
  15.    if(_root.soundtrack3playing)
  16.    {
  17.       _root.StopThisSound(_root.soundtrack3current,_root.soundtrack3index,3);
  18.    }
  19.    gotoAndStop("paused");
  20. }
  21.